home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / inet_tcp / freetcp / bin / extract.cmd next >
Encoding:
Text File  |  1995-08-20  |  271 b   |  8 lines

  1. echo EXTRACT.CMD will extract IFNDIS.SYS from the file given as argument.
  2. echo Example: %0 f:\32bit\tcpip\tcp20c4.exe
  3. if %# == 1 GOTO ok 
  4. echo I need 1 parameter.
  5. goto end
  6. :ok
  7. unzip -C %1 BASEOC1.ZIP && unzip -Cj BASEOC1.ZIP BIN/ifndis.sys && del BASEOC1.ZIP 
  8. :end